home *** CD-ROM | disk | FTP | other *** search
/ QRZ! Ham Radio 4 / QRZ Ham Radio Callsign Database - Volume 4.iso / files / dsp / 56ktools / dspkgctr.z / dspkgctr / gcc / output.h < prev    next >
C/C++ Source or Header  |  1992-06-08  |  5KB  |  155 lines

  1. /* Declarations for insn-output.c.  These functions are defined in recog.c.
  2.    Copyright (C) 1987 Free Software Foundation, Inc.
  3.  
  4.    $Id: output.h,v 1.4 91/07/15 16:03:58 pete Exp $
  5.  
  6. This file is part of GNU CC.
  7.  
  8. GNU CC is free software; you can redistribute it and/or modify
  9. it under the terms of the GNU General Public License as published by
  10. the Free Software Foundation; either version 1, or (at your option)
  11. any later version.
  12.  
  13. GNU CC is distributed in the hope that it will be useful,
  14. but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16. GNU General Public License for more details.
  17.  
  18. You should have received a copy of the GNU General Public License
  19. along with GNU CC; see the file COPYING.  If not, write to
  20. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  21.  
  22. /* Operand-predicate functions.  */
  23. int general_operand ();
  24. int push_operand ();
  25. int memory_operand ();
  26. int indirect_operand ();
  27. int immediate_operand ();
  28. int register_operand ();
  29. int address_operand ();
  30. int nonmemory_operand ();
  31. int nonimmediate_operand ();
  32.  
  33. int offsettable_address_p ();
  34. rtx adj_offsettable_operand ();
  35.  
  36. /* Output a string of assembler code.
  37.    Defined in final.c.  */
  38. void output_asm_insn();
  39.  
  40. /* When outputting assembler code, indicates which alternative
  41.    of the constraints was actually satisfied.  */
  42. #if defined( _MSDOS )
  43. extern int which_alternative;
  44. #else
  45. int which_alternative;
  46. #endif
  47.  
  48. /* When outputting delayed branch sequences, this rtx holds the
  49.    sequence being output.  It is null when no delayed branch
  50.    sequence is being output, so it can be used as a test in the
  51.    insn output code.
  52.  
  53.    This variable is defined  in final.c.  */
  54. #if defined( _MSDOS )
  55. extern rtx final_sequence;
  56. #else
  57. rtx final_sequence;
  58. #endif
  59.  
  60. /* Nonzero if function being compiled pops its args on return.
  61.    May affect compilation of return insn or of function epilogue.  */
  62.  
  63. #if defined( _MSDOS )
  64. /* this really is a case of duplicate definition. */
  65. extern int current_function_pops_args;
  66. #else
  67. int current_function_pops_args;
  68. #endif
  69.  
  70. /* Nonzero if function being compiled needs to be given an address
  71.    where the value should be stored.  */
  72.  
  73. #if defined( _MSDOS )
  74. /* this really is a case of duplicate definition. */
  75. extern int current_function_returns_struct;
  76. #else
  77. int current_function_returns_struct;
  78. #endif
  79.  
  80. /* Nonzero if function being compiled needs to
  81.    return the address of where it has put a structure value.  */
  82.  
  83. #if defined( _MSDOS )
  84. /* this really is a case of duplicate definition. */
  85. extern int current_function_returns_pcc_struct;
  86. #else
  87. int current_function_returns_pcc_struct;
  88. #endif
  89.  
  90. /* Nonzero if function being compiled needs to be passed a static chain.  */
  91.  
  92. #if defined( _MSDOS )
  93. /* this really is a case of duplicate definition. */
  94. extern int current_function_needs_context;
  95. #else
  96. int current_function_needs_context;
  97. #endif
  98.  
  99. /* Nonzero if function being compiled can call setjmp.  */
  100.  
  101. #if defined( _MSDOS )
  102. /* this really is a case of duplicate definition. */
  103. extern int current_function_calls_setjmp;
  104. #else
  105. int current_function_calls_setjmp;
  106. #endif
  107.  
  108. /* Nonzero if function being compiled can call alloca,
  109.    either as a subroutine or builtin.  */
  110.  
  111. #if defined( _MSDOS )
  112. /* this really is a case of duplicate definition. */
  113. extern int current_function_calls_alloca;
  114. #else
  115. int current_function_calls_alloca;
  116. #endif
  117.  
  118. /* Nonzero if the current function returns a pointer type */
  119.  
  120. #if defined( _MSDOS )
  121. /* this really is a case of duplicate definition. */
  122. extern int current_function_returns_pointer;
  123. #else
  124. int current_function_returns_pointer;
  125. #endif
  126.  
  127. /* If function's args have a fixed size, this is that size, in bytes.
  128.    Otherwise, it is -1.
  129.    May affect compilation of return insn or of function epilogue.  */
  130.  
  131. #if defined( _MSDOS )
  132. /* this really is a case of duplicate definition. */
  133. extern int current_function_args_size;
  134. #else
  135. int current_function_args_size;
  136. #endif
  137. /* # bytes the prologue should push and pretend that the caller pushed them.
  138.    The prologue must do this, but only if parms can be passed in registers.  */
  139.  
  140. #if defined( _MSDOS )
  141. /* this really is a case of duplicate definition. */
  142. extern int current_function_pretend_args_size;
  143. #else
  144. int current_function_pretend_args_size;
  145. #endif
  146.  
  147. /* Name of function now being compiled.  */
  148.  
  149. #if defined( _MSDOS )
  150. /* this really is a case of duplicate definition. */
  151. extern char *current_function_name;
  152. #else
  153. char *current_function_name;
  154. #endif
  155.